home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / Music / PLAY / MultiPlayer / GMOD / makefile < prev   
Makefile  |  1995-08-23  |  390b  |  16 lines

  1. # Makefile to compile DW_Convert with SAS/C
  2. # (Not an incredibly complicated procedure really)
  3.  
  4. DW_Convert: DW_Convert.o DW_GMOD.o
  5.     BLink from lib:c.o DW_Convert.o DW_GMOD.o to DW_Convert \
  6.         lib lib:lc.lib nodebug
  7.  
  8. DW_Convert.o: DW_Convert.c
  9.     LC $*
  10.  
  11. # I use the A68k assembler by Charlie Gibbs for everything, but other
  12. # assemblers should work too...
  13. DW_GMOD.o: DW_GMOD.asm
  14.     A68k $*.asm
  15.  
  16.